home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Utilities / Winter Shell 1.0d2 / Source / Libraries / LongRectangleLib / LongRectangleLib.h < prev   
Encoding:
C/C++ Source or Header  |  1993-12-18  |  335 b   |  9 lines  |  [TEXT/KAHL]

  1. #pragma once
  2. typedef struct { long top, left, bottom, right; } LRectType;
  3. Boolean LRectValid(const LRectType *r);
  4. void LRectToRect(const LRectType *lr, Rect *r);
  5. void LRectFromRect(LRectType *lr, const Rect *r);
  6. void LRectOffset(LRectType *r, long h, long v);
  7. long LRectWidth(const LRectType *r);
  8. long LRectHeight(const LRectType *r);
  9.